home *** CD-ROM | disk | FTP | other *** search
/ The Guided Tour of Multimedia (Second Edition) / The Guided Tour of Multimedia (Second Edition).iso / trials / qtw111 / samples / bigeight.mak < prev    next >
Text File  |  1992-09-02  |  620b  |  23 lines

  1.  
  2. # ---------------------------------------------------------------------
  3. #
  4. # BigEight.mak - Sample QuickTime for Windows Application
  5. #
  6. #                (c) 1988-1992 Apple Computer, Inc. All Rights Reserved.
  7. #
  8. # ---------------------------------------------------------------------
  9.  
  10. ALL : BIGEIGHT.EXE
  11.  
  12. BIGEIGHT.OBJ : BIGEIGHT.C
  13.  cl -c -AS -DSTRICT -G2 -Zpel -W3 -WX -Od bigeight.c
  14.  
  15. BIGEIGHT.RES : BIGEIGHT.RC BIGEIGHT.H
  16.  rc -r bigeight.rc
  17.  
  18. BIGEIGHT.EXE : BIGEIGHT.OBJ BIGEIGHT.RES BIGEIGHT.DEF
  19.  link /nod /a:16 bigeight, bigeight.exe, nul, \
  20.       qtw libw slibcew, bigeight.def
  21.  rc bigeight.res
  22.  
  23.